home *** CD-ROM | disk | FTP | other *** search
/ Rolling Stones - Voodoo Lounge / VOODOO.ISO / pc / scrnrave.dxr / 00086_global xitframe.ls < prev    next >
Encoding:
Text File  |  1995-10-20  |  546 b   |  34 lines

  1. on exitFrame
  2.   global gDown
  3.   if not gDown then
  4.     if rollOver(2) then
  5.       makevisible(0)
  6.     else
  7.       repeat with k = 5 to 8
  8.         if rollOver(k) then
  9.           makevisible(1)
  10.         end if
  11.       end repeat
  12.     end if
  13.   end if
  14. end
  15.  
  16. on mouseDown
  17.   global gDown
  18.   set the locH of sprite 3 to the mouseH
  19.   set the locV of sprite 3 to the mouseV
  20.   set gDown to 1
  21. end
  22.  
  23. on mouseUp
  24.   global gDown
  25.   set gDown to 0
  26. end
  27.  
  28. on makevisible onOrOff
  29.   repeat with i = 5 to 48
  30.     set the visible of sprite i to onOrOff
  31.   end repeat
  32.   updateStage()
  33. end
  34.